home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / utility / mu17_ext.zip / INSTALL < prev    next >
Text File  |  1994-03-07  |  660b  |  47 lines

  1. (complete 0)
  2.  
  3. (set #bad-kick
  4. (cat "You must be using Kickstart 3.0 (V39) to install DosWedge"
  5. ))
  6.  
  7. (set #which-disk
  8. (cat "\nSelect directory to install to"
  9. ))
  10.  
  11. (if (< (/ (getversion) 65536) 39)
  12. (
  13.     (abort #bad-kick)
  14. ))
  15.  
  16. (complete 10)
  17.  
  18. (set target (askdir (prompt #which-disk)
  19.         (help @set)
  20.         (default "SYS:WBStartup")
  21.     )
  22. )
  23. (set @default-dest target)
  24.  
  25. (complete 20)
  26.  
  27. (copylib
  28.     (prompt "Installing matrix.library")
  29.     (help @copylib-help)
  30.     (source "matrix.library")
  31.     (dest "LIBS:")
  32.     (confirm)
  33. )
  34. (complete 66)
  35.  
  36. (copyfiles
  37.     (prompt "Copying to " #target )
  38.     (help @copyfiles-help)
  39.     (source "")
  40.     (dest (cat target) )
  41.     (choices "DosWedge")
  42.     (infos)
  43. )
  44.  
  45. (complete 100)
  46.  
  47.